JavaScript statements consist of keywords used with the appropriate syntax. A single statement may span multiple lines. Multiple statements may occur on a single line if each statement is separated by a semi-colon.
Syntax conventions: All keywords in syntax statements are in bold. Words in italics represent user-defined names or statements. Any portions enclosed in square brackets, i.e. [ and ], are optional. {statements} indicates a block of statements, which can consist of a single statement or multiple statements delimited by a curly braces.
The following statements are available in JavaScript:
break comment continue for for...in function if...else return var while with
Comments are notations by the author to explain what the script does, and they are ignored by the interpreter. JavaScript supports Java-style comments: Comments on a single line are preceded by a double-slash (//). Comments that span multiple lines are preceded by a /* and followed by a */.
Syntax
1. // comment text
2. /* multiple line comment text */
Examples
// This is a single-line comment.
/* This is a multiple-line comment. It can be of any length, and
The continue statement terminates execution of the block of statements in a while or for loop, and continues execution of the loop with the next iteration. In contrast to the break statement, it does not terminate the execution of the loop entirely: instead,
ΓÇóIn a while loop it jumps back to the condition. ΓÇóIn a for loop it jumps to the update expression.
Syntax
continue
Examples
The following example shows a while loop that has a continue statement that executes when the value of i is 3. Thus, n takes on the values 1, 3, 7, and 12.
A for loop consists of three optional expressions, enclosed in parentheses and separated by semicolons, followed by a block of statements executed in the loop. The parts of the for statement are:
ΓÇóThe initial expression, generally used to initialize a counter variable. This statement may optionally declare new variables with the var keyword. This expression is optional. ΓÇóThe condition that is is evaluated on each pass through the loop. If this condition is true, the statements in the succeeding block are performed. This conditional test is optional. If omitted, then the condition always evaluates to true. ΓÇóAn update expression generally used to update or increment the counter variable. This expression is optional. ΓÇóA block of statements that are executed as long as the condition is true. This can be a single statement or multiple statements. Although not required, it is good practice to indent these statements four spaces from the beginning of the for statement.
Syntax
for ([initial expression]; [condition]; [update expression]) {
This simple for statement starts by declaring the variable i and initializing it to zero. It checks that i is less than nine, and performs the two succeeding statements, and increments i by one after each pass through the loop.
The for statement iterates variable var over all the properties of object obj. For each distinct property, it executes the statements in statements.
Syntax
for (var in obj) {
statements }
Examples
The following function takes as its argument an object and the object's name. It then iterates over all the object's properties and returns a string that lists the property names and their values.
function dump_props(obj, obj_name) {
var result = "", i = "";
for (i in obj)
result += obj_name + "." + i + " = " + obj[i] + "\n";
The function statement declares a JavaScript function name with the specified parameters param. To return a value, the function must have a return statement that specifies the value to return. You cannot nest a function statement in another statement or in itself.
All parameters are passed to functions, by value. In other words, the value is passed to the function, but if the function changes the value of the parameter, this change is not reflected globally or in the calling function.
Syntax
function name([param] [, param] [..., param]) {
statements }
Examples
//This function returns the total dollar amount of sales, when
//given the number of units sold of products a, b, and c.
The if...else statement is a conditional statement that executes the statements in statements if condition is true. In the optional else clause, it executes the statements in else statements if condition is false. These may be any JavaScript statements, including further nested if statements.
The var statement declares a variable varname, optionally initializing it to have value. The variable name varname can be any legal identifier, and value can be any legal expression. The scope of a variable is the current function or, for variables declared outside a function, the current application.
Using var outside a function is optional; you can declare a variable by simply assigning it a value. However, it is good style to use var, and it is neccessary in functions if there is a global variable of the same name. So, in general, it is a good idea to always use var, but you should definitely use it when declaring a local variable in a function, to ensure that any global variable of the same name does not override it.
The while statement is a loop that evaluates the expression condition,and if it is true, executes statements. It then repeats this process, as long as condition is true. When condition evaluates to false, execution continues with the next statement following the statements.
Although not required, it is good practice to indent the statements a while loop four spaces from the beginning of the for statement.
Syntax
while (condition) {
statements
}
Examples
The following simple while loop iterates as long as n is less than three. Each iteration, it increments n and adds it to x. Therefore, x and n take on the following values
ΓÇóAfter first pass: x = 1 and n = 1
ΓÇóAfter second pass: x = 2 and n = 3
ΓÇóAfter third pass: x = 3 and n = 6
After completing the third pass, the condition n <3 is no longer true, so the loop terminates.